rmse in python

42

rmse in python -

from sklearn.metrics import mean_squared_error
from math import sqrt

rms = sqrt(mean_squared_error(y_actual, y_predicted))

calculate root mean square error python -

def rmse(predictions, targets):
    return np.sqrt(((predictions - targets) ** 2).mean())

Comments

Submit
0 Comments